home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 1997-99 Pandemic Studios
- //
- // Dark Reign II
- //
-
- CreateObjectType("objective_traitors_eliminated", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("AND")
- {
- Condition("InRegion")
- {
- Team("Sprawlers");
- Region("SprawlBase");
- Type("*")
- {
- Amount(1);
- Operator("<");
- }
- }
- Condition("InRegion")
- {
- Region("monkey_power1");
- Team("JDA");
- Type("jda.building.solarpower")
- {
- Amount(0);
- Operator(">");
- }
- }
- Condition("InRegion")
- {
- Region("monkey_power2");
- Team("JDA");
- Type("jda.building.solarpower")
- {
- Amount(0);
- Operator(">");
- }
- }
- }
-
- Action()
- {
- DisplayObjective("Complete", "objective_traitors_eliminated");
- DisplayObjective("Complete", "objective_block_ravine");
- NewObjective("cineractive_outro");
- }
- }
- }
-
- CreateObjectType("objective_traitors_eliminated2", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("AND")
- {
- Condition("InRegion")
- {
- Team("Sprawlers");
- Region("SprawlBase");
- Type("*")
- {
- Amount(1);
- Operator("<");
- }
- }
- Condition("InRegion")
- {
- Region("monkey_power1");
- Team("JDA");
- Type("jda.building.solarpower")
- {
- Amount(1);
- Operator("<");
- }
- }
- Condition("InRegion")
- {
- Region("monkey_power2");
- Team("JDA");
- Type("jda.building.solarpower")
- {
- Amount(1);
- Operator("<");
- }
- }
- }
-
- Action()
- {
- GameMessage()
- {
- Message("msg_okay_fine");
- }
- Op("@.basegone", "=", 1);
- NewObjective("objective_block_ravine2");
- }
- }
- }
-
-